type internal/strconv.floatInfo
10 uses
internal/strconv (current package)
atof.go#L311: func (d *decimal) floatBits(flt *floatInfo) (b uint64, overflow bool) {
atof.go#L496: func atofHex(s string, flt *floatInfo, mantissa uint64, exp int, neg, trunc bool) (float64, error) {
ftoa.go#L18: type floatInfo struct {
ftoa.go#L34: float32info = floatInfo{float32MantBits, float32ExpBits, float32Bias}
ftoa.go#L35: float64info = floatInfo{float64MantBits, float64ExpBits, float64Bias}
ftoa.go#L74: var flt *floatInfo
ftoa.go#L189: func bigFtoa(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
ftoa.go#L262: func roundShortest(d *decimal, mant uint64, exp int, flt *floatInfo) {
ftoa.go#L493: func fmtB(dst []byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
ftoa.go#L516: func fmtX(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |